home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Snippets / Platforms & Tools / ◊Other / TRandom 1.0b3 / MRandom.cp next >
Encoding:
Text File  |  1991-11-04  |  611 b   |  30 lines  |  [TEXT/MPS ]

  1. /*
  2.     Apple Macintosh Developer Technical Support, 
  3.     TRandom 1.0 -  Saturday, October 5, 1991 18:26:35
  4.  
  5.     MRandom.cp    -    C++ source
  6.  
  7.     Copyright © 1991 Apple Computer, Inc. 
  8.     All rights reserved.
  9.  
  10.     TRandom is a stackbased utility class for random number generation.
  11.     MRandom.cp contains the Random Generator test framework 
  12.     for the the TRandom class.
  13. */
  14.  
  15.  
  16.  
  17. //    INCLUDE FILES ------------------------------------------------------------
  18.  
  19. #include "Random.h"
  20.  
  21.  
  22. // M A I N -------------------------------------------------------------------
  23.  
  24. main()
  25. {
  26.     TRandom::TestRandomClass();            // call testing routine
  27.     return 0;
  28. }
  29.  
  30.